home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 3
/
BBS in a box - Trilogy III.iso
/
Files
/
Prog
/
U-Z
/
VideoToolBox Folder
/
VideoToolboxSources
/
Uniform.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1993-02-23
|
360 b
|
17 lines
|
[
TEXT/KAHL
]
/*
Uniform.c
UniformSample() returns a random sample from the interval [0,1).
It has a mean of 0.5 and a variance of 1/12.
HISTORY:
12/28/91 dgp extracted it from Normal.c
*/
#include "VideoToolbox.h"
double UniformSample(void)
{
return rand()*(1.0/(RAND_MAX+1.0));
}
/*
The constant is evaluated by the compiler. Multiplication is faster than division.
*/